net/http/internal.chunkedReader.n (field)
9 uses
net/http/internal (current package)
chunked.go#L39: n uint64 // unread bytes in chunk
chunked.go#L59: cr.n, cr.err = parseHexUint(line)
chunked.go#L78: cr.excess -= 16 + (2 * int64(cr.n))
chunked.go#L83: if cr.n == 0 {
chunked.go#L119: if cr.n == 0 {
chunked.go#L132: if uint64(len(rbuf)) > cr.n {
chunked.go#L133: rbuf = rbuf[:cr.n]
chunked.go#L139: cr.n -= uint64(n0)
chunked.go#L142: if cr.n == 0 && cr.err == nil {
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |